fix(ci): bump cargo-zigbuild so arm64 images link under Rust 1.98 - #3963
Merged
Conversation
Rust 1.98 passes -Wl,--fix-cortex-a53-843419 to the linker for every aarch64-unknown-linux target (rust-lang/rust#155453). zig cc rejects unknown -Wl flags, so every arm64 publish job built through cargo-zigbuild 0.22.1 died in cargo chef cook with "unsupported linker arg: --fix-cortex-a53-843419". The amd64 images were unaffected and pre-merge CI never builds these Dockerfiles, so the breakage only surfaced after the toolchain bump landed. cargo-zigbuild 0.23.0 filters that flag (rust-cross/cargo-zigbuild#452); pin the latest 0.23.2 in the three Dockerfiles that link through zig.
spetz
approved these changes
Aug 25, 2026
thepatrykk
approved these changes
Aug 25, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3963 +/- ##
=============================================
- Coverage 83.99% 34.97% -49.03%
Complexity 1358 1358
=============================================
Files 1215 1214 -1
Lines 170548 141369 -29179
Branches 138292 109114 -29178
=============================================
- Hits 143252 49439 -93813
- Misses 23439 90521 +67082
+ Partials 3857 1409 -2448
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rust 1.98 passes -Wl,--fix-cortex-a53-843419 to the linker for every
aarch64-unknown-linux target (rust-lang/rust#155453). zig cc rejects
unknown -Wl flags, so every arm64 publish job built through
cargo-zigbuild 0.22.1 died in cargo chef cook with
"unsupported linker arg: --fix-cortex-a53-843419". The amd64 images
were unaffected and pre-merge CI never builds these Dockerfiles, so
the breakage only surfaced after the toolchain bump landed.
cargo-zigbuild 0.23.0 filters that flag
(rust-cross/cargo-zigbuild#452); pin the latest 0.23.2 in the three
Dockerfiles that link through zig.